Const

Qualifiers that extends basic data types

Created: 2022-08-19
Tags: #fleeting


Purpose of const?

In general, to tell to the program that the VALUE MUST NEVER CHANGE

-> In array, to tell program elements must never change
-> In function args

Where can I use const?

Any declaration of variable

Array,
const char name[] = "Jonathan";

Function Arguments
int hello(const int 50);

References